home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dirut / cdd.zip / MAKEFILE < prev   
Text File  |  1987-10-11  |  245b  |  16 lines

  1. # makefile fuer cdd.com
  2.  
  3. INCLUDE = d:\turboc\include
  4. LIB = d:\turboc\lib
  5.  
  6. all : cdd.com
  7.  
  8. cdd.com    : cdd.exe
  9.     exe2bin cdd.exe cdd.com
  10. #    del cdd.exe
  11. #    del cdd.obj
  12.  
  13. cdd.exe cdd.obj : cdd.c
  14.     tcc -I$(INCLUDE) -L$(LIB) -mt -G -O cdd.c
  15. 
  16.